home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / compress / zzap66a.zip / ZZAP.CFG < prev    next >
Text File  |  1992-10-23  |  4KB  |  122 lines

  1.  
  2. ; Remove the comments to speed up processing of this file.
  3.  
  4. ;----------------------------------------------------------------------------
  5. ;                      ZZAP configuration file
  6. ;----------------------------------------------------------------------------
  7.  
  8. ; Declare your default command line switches.  These are set to the
  9. ; normal defaults of ZZAP.
  10.  
  11. SWITCH=/a+/b-/c-/f-/i-/k-/l-/m+/n+/p-/r-/s-/t-/v-/x-/y-/z+
  12.  
  13. ; Declare the subdirectory to place corrupted/virused archives in.
  14.  
  15. BADDIR=C:\BAD.DIR
  16.  
  17. ; This alternate subdirectory for virused files is commented out
  18. ; so virused archives will be placed in the declared BADDIR.
  19.  
  20. ; VIRUSDIR=C:\VIRUS.DIR
  21.  
  22. ; BBS file fixer program name and command line options.  This command
  23. ; is for QuickBBS but is commented out.
  24.  
  25. ; FIXER=QFIX.EXE descript.ion
  26.  
  27. ; Command line options for SCAN.EXE
  28.  
  29. SCANOPT=/A /NOMEM /NOPAUSE /NOBREAK
  30.  
  31. ; Set the maximum number of days old a file can be to allow processing.
  32. ; Setting this value to zero will cause the age of a file to be ignored.
  33. ; AGE=1 indicates files with today's date ONLY, AGE=2 is for files stamped
  34. ; with today's or yesterday's date.
  35.  
  36. AGE=0
  37.  
  38. ; One use for the MID= command is to execute directory sorting program
  39. ; so that all files are sorted before being placed in the new archive.
  40. ; Programs such as PKZIP do not sort the files when placing them in
  41. ; the archive.  This example is commented out.
  42.  
  43. ; MID=D:\DS.EXE NE
  44.  
  45. ; Define each of the extracting programs.  Each definition must
  46. ; begin with the extension associated with that archive type,
  47. ; followed by the command to extract all files.  The %1 is
  48. ; replaced by the path and filename of the archive.
  49.  
  50. UNARC=arc pkunpak.exe %1 >nul
  51. UNARC=arj arj.exe e -a -y %1 >nul
  52. UNARC=dwc dwc.exe ew %1 >nul
  53. UNARC=ice ice.exe e -n %1 >nul
  54. UNARC=lbr lue220.com %1 >nul
  55. UNARC=lzh lha.exe e /xm -n %1 >nul
  56. UNARC=pak pak.exe e %1 >nul
  57. UNARC=sdn pak.exe e %1 >nul
  58. UNARC=sqz sqz.exe a %1
  59. UNARC=zip pkunzip.exe -d -jhsr %1 >nul
  60. UNARC=zoo zoo.exe e// %1 >nul
  61.  
  62. ; The next command defines the default archive to convert to. You
  63. ; can override this command with the /E and /O switches.
  64.  
  65. DEFAULT=zip
  66.  
  67. ; Define the archiving programs.  This command is almost
  68. ; identical to the UNARC command except you must follow the
  69. ; program name with the command to add all files in the current
  70. ; subdirectory to the named archive (ZZAP replaces %1 with the
  71. ; archive name).
  72.  
  73. ARC=arc pkpak.exe -a %1 *.* >nul
  74. ARC=arj arj.exe a -a -jt -y %1 *.* > nul
  75. ARC=dwc dwc.exe arw %1 *.*/s
  76. ARC=ice ice.exe a -anm %1 *.* >nul
  77. ARC=lzh lha.exe a -amnpr %1 *.* >nul
  78. ARC=pak pak.exe a /I %1 *.* >nul
  79. ARC=sdn pak.exe ai %1 *.* >nul
  80. ARC=sqz sqz.exe a %1 *.*
  81. ARC=zoo zoo.exe a: %1 * >nul
  82. ARC=zip pkzip.exe -a -ex -jhsr -whsr -p -r %1 *.* >nul
  83.  
  84. ; Define self-extracting archive signatures. The first parameter
  85. ; is the archive type, the second parameter is offset into the
  86. ; file (decimal), the rest is the signature.  See the manual for
  87. ; additional information.
  88.  
  89. ; ARJ 2.30 jr
  90. SFX=ARJ 561 aRJsfX
  91.  
  92. ; ARJ 2.30
  93. SFX=ARJ 562 aRJsfX
  94.  
  95. ; LHA 2.05E
  96. SFX=LZH 36 LH's SFX
  97.  
  98. ; ZIP 1.10
  99. SFX=ZIP 50 PKWARE
  100.  
  101. ; The following command determines how executable programs (EXE
  102. ; and COM files) that are not self-extracting archives (SFX)
  103. ; should be treated.  The default is to flag the file as "BAD".
  104. ; The following command causes the file to be ignored instead.
  105. ; The setting of this command will never affect executables found
  106. ; inside an archive which are always left alone if they are not
  107. ; SFX.
  108.  
  109. NONSFX=IGNORE
  110.  
  111. ; The next command determines if executables contained inside an
  112. ; archive should be checked for the SFX signature.  This command
  113. ; accepts one of three parameters:  YES, NO, and BAD (flags
  114. ; nested SFX files as bad archives).  Here we are saying to not
  115. ; check for nested SFX files, which is the default if the command
  116. ; was left out entirely.  Changing it to YES or BAD will slow
  117. ; down processing since all EXE and COM files in the archive must
  118. ; be opened and examined.
  119.  
  120. NESTEDSFX=NO
  121.  
  122.